Remove(Predicate<DicomAttribute>) Method
In This Topic
Removes the attributes from the DataSet that match the selector
Syntax
'Declaration
Public Overloads Sub Remove( _
ByVal As System.Predicate(Of DicomAttribute) _
)
'Usage
Dim instance As DicomDataSet
Dim selector As System.Predicate(Of DicomAttribute)
instance.Remove(selector)
public void Remove(
System.Predicate<DicomAttribute>
)
public procedure Remove(
: System.Predicate
);
public function Remove(
: System.Predicate
);
public: void Remove(
System.Predicate<DicomAttribute*>*
)
public:
void Remove(
System.Predicate<DicomAttribute^>^
)
Parameters
- selector
- The predicate to match the attributes to be removed
Requirements
Target Platforms: .NET CLR 4.8 or higher
See Also